home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / apache / conf / moddav.conf < prev    next >
Text File  |  2005-06-12  |  834b  |  35 lines

  1. ### Section WEBDAV
  2.  
  3. # Use name-based virtual hosting.
  4.  
  5. Listen 81
  6. NameVirtualHost 127.0.0.1:81
  7.  
  8.  
  9. <VirtualHost 127.0.0.1:81>
  10. #    ServerAdmin webmaster@dummy-host.example.com
  11. DocumentRoot "/xampp/webdav/"
  12. #    ServerName dummy-host.example.com
  13. #    ErrorLog logs/dummy-host.example.com-error_log
  14. #    CustomLog logs/dummy-host.example.com-access_log common
  15. AccessFileName .htaccess
  16. DAVLockDB "/xampp/webdav/tmp/LockDB"
  17. #<Location />
  18. #DAV On
  19. #AuthType basic
  20. #AuthName "WAMPP mit WebDAV"
  21. #AuthUserfile /xampp/webdav/.htpasswd
  22. #<LimitExcept GET HEAD OPTIONS>
  23. #require user wampp
  24. #</LimitExcept>
  25. #</Location>
  26.  
  27. <Directory "/xampp/webdav/">
  28. DAV On
  29.         Options ALL
  30.       AllowOverride All
  31.         AddHandler cgi-script .cgi .exe
  32.         Order allow,deny
  33.         Allow from all
  34.     </Directory>
  35. </VirtualHost>